home *** CD-ROM | disk | FTP | other *** search
Gui4CLI script | 1980-01-03 | 824 b | 42 lines |
- G4C - CygnusEd Rexx control centre
-
-
- ; This is an accompanying GUI for the cedbar.gc GUI
-
-
-
- WINBIG 604 21 46 66 "xx"
- WinSmall 500 22 140 11
- WinType 11000000
- Screen CygnusEdScreen1
-
- ;***************************** MARK Set/Go *********************
-
- XRADIO 24 2 18 9 cedMark 2
- RStr 1 1
- RStr 2 2
- RStr 3 3
-
- XBUTTON 5 48 36 16 Set
- SetVar cedSend "mark location "
- AppVar cedSend $cedMark
- SendRexx rexx_ced $cedSend
- gosub cedMark.g verify
-
- XBUTTON 5 32 36 16 Go
- SetVar cedSend "jump to mark "
- AppVar cedSend $cedMark
- SendRexx rexx_ced $cedSend
- gosub cedMark.g verify
-
- ;**************************** ROUTINE VERIFY
- ; This is just a little routine to show the result of the SendRexx command
-
- xRoutine Verify
- if $$Retcode > 0
- SetWinTitle cedMark.g "CEd not found!"
- break
- endif
- SetWinTitle cedMark.g "CygnusEd ok"
-
-